fbeca479344a8ba23c74c679ddd4e105182ecbde,core/kernel/source/jetbrains/mps/project/AbstractModule.java,AbstractModule,getOwnClassPath,#,841

Before Change



  @Deprecated
  public final Collection<String> getOwnClassPath() {
    return getJavaFacet().getOwnClassPath();
  }

  @Deprecated

After Change


   */
  @Deprecated
  public final Collection<String> getOwnClassPath() {
    return ((JavaModuleFacetImpl) getJavaFacet()).getOwnClassPath();
  }

  /**